summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp/(evcp)/(master-data)/docu-list-rule/layout.tsx
blob: 05231bf1511f9418c710507cea556fea39c718b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { Shell } from "@/components/shell"
import DocuListRuleClient from "@/components/docu-list-rule/docu-list-rule-client"

// Layout 컴포넌트는 서버 컴포넌트입니다
export default async function VendorDocuments({
  children,
}: {
  children: React.ReactNode
}) {
  return (
    <Shell className="gap-2">
      <DocuListRuleClient>
        {children}
      </DocuListRuleClient>
    </Shell>
  )
}